From: Pavel Janík Date: Fri, 2 Nov 2001 20:14:02 +0000 (+0000) Subject: (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~60972 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4;p=emacs.git (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros. --- diff --git a/src/frame.h b/src/frame.h index 633199809e9..f58529d1ee0 100644 --- a/src/frame.h +++ b/src/frame.h @@ -614,13 +614,13 @@ typedef struct frame *FRAME_PTR; (f)->visible = (f)->async_visible, \ (f)->iconified = (f)->async_iconified) -#define CHECK_FRAME(x, i) \ +#define CHECK_FRAME(x) \ do { \ if (! FRAMEP (x)) \ x = wrong_type_argument (Qframep, (x)); \ } while (0) -#define CHECK_LIVE_FRAME(x, i) \ +#define CHECK_LIVE_FRAME(x) \ do { \ if (! FRAMEP (x) \ || ! FRAME_LIVE_P (XFRAME (x))) \